   .section-header {
      background: linear-gradient(to right, #4e73df, #f6c23e);
      color: white;
      padding: 8px;
      margin: 5px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .section-header h3 {
      margin: 0;
    }

    .section-header a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      margin-right: 5px;
    }

    .product-grid {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 15px;
      background: white;
    }

    .product-card {
      background: white;
      border: 1px solid #ddd;
      width: 200px;
      flex-shrink: 0;
      padding: 10px;
      position: relative;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 130px;
      overflow: hidden;
    }

    .slider-images {
      display: flex;
      width: 300%;
      transition: transform 0.5s ease;
    }

    .slider-images img {
      width: 100%;
      height: 130px;
      object-fit: cover;
    }

    .icon-overlay {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: 0.3s ease;
      z-index: 2;
    }

    .product-card:hover .icon-overlay {
      opacity: 1;
    }

    .icon-overlay i {
      background: white;
      border-radius: 50%;
      padding: 6px;
      font-size: 14px;
      box-shadow: 0 0 3px rgba(0,0,0,0.2);
      cursor: pointer;
    }

    .dots {
      display: flex;
      justify-content: center;
      margin-top: 5px;
    }

    .dots span {
      height: 6px;
      width: 6px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      margin: 0 2px;
    }

    .dots .active {
      background-color: #ff9800;
    }

    .sku {
      font-size: 12px;
      color: #666;
      margin: 5px 0;
    }

    .title {
      font-size: 14px;
      font-weight: bold;
      margin: 5px 0;
    }

    .price {
      color: #0066ff;
      font-weight: bold;
    }

    .stock {
      color: green;
      font-size: 13px;
      display: flex;
      align-items: center;
      margin-top: 5px;
    }

    .stock::before {
      content: '✔';
      margin-right: 5px;
    }

    .tooltip {
      position: absolute;
      bottom: -90px;
      right: 0;
      background: #fff;
      color: #000;
      border: 1px solid #ccc;
      padding: 8px;
      font-size: 12px;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      display: none;
      width: 200px;
      z-index: 10;
    }

    .label {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background-color: #007bff;
      color: white;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 3px;
      font-weight: bold;
    }


    .product-card:last-child:hover .tooltip {
      display: block;
    }